You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Briefly, the issue is that when installing psycopg2 in a virtualenv that was created with --no-site-packages (in an attempt to be completely independent of the underlying system), psycopg2's setup.py will still find mx and set HAVE_MXDATETIME=1. The compilation and install succeed, but since mx isn't installed in the virtualenv, importing psycopg2 results in an ImportError: can't import mx.DateTime module.
As far as I can tell, this happens because setup.py does
to determine whether mx is available. That will find the mx include directory (eg, /usr/include/python2.6/mx) and it will be able to compile. But this is circumventing the virtualenv and isn't safe behavior when installing into a virtualenv.
I can easily set mxincludedir to a bogus directory to trick it into thinking mx isn't installed anywhere and get it to work, but that doesn't strike me as the best and cleanest solution.
I'm not sure exactly what the best solution is overall, but I'd suggest that one way or another, psycopg2 should only compile in mx.DateTime support when it can both find the mx headers and know that the mx python library will be available.
The text was updated successfully, but these errors were encountered:
I have committed a better fix, to be released soon. mx is now an optional dependency even when the support is built: at runtime, if not found, mx is disabled and psycopg can be imported anyway, only using stdlib datetime objects.
Originally submitted by: Anders Pearson
Briefly, the issue is that when installing psycopg2 in a virtualenv that was created with
--no-site-packages
(in an attempt to be completely independent of the underlying system), psycopg2's setup.py will still find mx and setHAVE_MXDATETIME=1
. The compilation and install succeed, but since mx isn't installed in the virtualenv, importing psycopg2 results in anImportError: can't import mx.DateTime module
.As far as I can tell, this happens because setup.py does
to determine whether mx is available. That will find the mx include directory (eg,
/usr/include/python2.6/mx
) and it will be able to compile. But this is circumventing the virtualenv and isn't safe behavior when installing into a virtualenv.I can easily set
mxincludedir
to a bogus directory to trick it into thinking mx isn't installed anywhere and get it to work, but that doesn't strike me as the best and cleanest solution.I'm not sure exactly what the best solution is overall, but I'd suggest that one way or another, psycopg2 should only compile in mx.DateTime support when it can both find the mx headers and know that the mx python library will be available.
The text was updated successfully, but these errors were encountered: